public class TryNestDemo{
public static void main(String []args){
	   int n=0;
	   try{
	           try{
		   n=24/n;                  //ArithmeticException쳣
	           }catch(NumberFormatException e){
		   System.out.println("Divided by zero!");
		   System.out.println("쳣ڲ㲶!");
	           }
	   }catch(ArithmeticException e){
	            System.out.println("Divided by zero!");
	            System.out.println("쳣㱻!");
	   }
}
}